.login-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.lang-login {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
}

    .lang-login button {
        background: #127CBE;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 20px;
        cursor: pointer;
    }



.login-box {
    margin: 16vh 6vh auto 120vh;
    width: 50vh;
    min-width: 420px;
    background: white;
    border-radius: 16px;
    padding: 4vh;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

    .login-box img {
        height: 54px;
    }

    .login-box h2 {
        margin: 6px 0;
        color: #002F41;
        font-size: 24px;
        font-weight: bold;
    }

.tabs {
    display: flex;
    gap: 24px;
    margin: 4vh 0 2vh;
    font-size: 18px;
    cursor: pointer;
}

    .tabs span.active {
        font-weight: 600;
        color: #127CBE;
    }

.input-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .input-group input {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

.extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1vh;
    font-size: 16px;
    color: #666;
}

.login-btn {
    margin-top: 2.6vh;
    background: linear-gradient(0deg, #3E9ACC 0%, #77BCD9 99%);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}


.register {
    text-align: center;
    margin-top: 2vh;
    font-size: 16px;
}

    .register a {
        color: #127CBE;
        text-decoration: none;
        font-weight: 600;
    }

.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 0.8vh 1.5vh;
    background-color: white;
}

    .input-wrapper img {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        display: block;
    }

    .input-wrapper input {
        border: none;
        outline: none;
        flex: 1;
        padding: 1vh;
        font-size: 16px;
    }

    .input-wrapper select {
        border: 1px solid #ddd;
        outline: none;
        flex: 1;
        border-radius: 6px;
        padding: 1vh;
        font-size: 16px;
    }

    .input-wrapper button {
        border: 1px solid #ddd;
        outline: none;
        flex: 1;
        border-radius: 6px;
        padding: 0.8vh;
        font-size: 16px;
    }
